;; PRODUCT: <Enter the product name>
;; PRODUCT-ID: 6f8ba713-5ff5-40cc-9e41-e75d86a13c45
;; AUTHOR: TallyDeveloper


[#Menu: Gateway of Tally]
    ;; This will add a Menu-option before the Balance Sheet 
    Add: Item: Before: ~Balance Sheet: Message: Display: rptMyReport

    ;; Remarks
    ;; To add menu-option after Balance Sheet, use keyword After
    ;; Example:-
    ;; Add: Item: After:~Balance Sheet: Message: Display: rptMyReport
    ;; Add: Item: At Beginning: Message: Display: rptMyReport
    ;; Add: Item: At End: Message: Display: rptMyReport

[Report: rptMyReport]
    Add: Form: frmMyForm

[Form: frmMyForm]
    Add: Part: prtMyPart

    ;; This specifies that the width of the form must be 40% of the screen width
    Width: 40% screen
    ;; This specifies that the height of the form must be 50 of the screen height
    Height: 50% screen

[Part: prtMyPart]
    Add: Line: lnMyLine

[Line: lnMyLine]
    Add: Field: fldMyField

[Field: fldMyField]
    Set as : "Here you can display any message so go to .txt file and replace text"
